projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18bf657
)
* frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression.
author
Dan Nicolaescu
<dann@ics.uci.edu>
Thu, 15 Apr 2010 18:19:00 +0000
(11:19 -0700)
committer
Dan Nicolaescu
<dann@ics.uci.edu>
Thu, 15 Apr 2010 18:19:00 +0000
(11:19 -0700)
src/ChangeLog
patch
|
blob
|
history
src/frame.h
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index a32558a2ac75775afbbfe7febec6c3c9136a9b7b..c962fe04af67257a0858aca76764edb06c606d50 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression.
+
2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
Reduce cpp use in Makefile.in.
diff --git
a/src/frame.h
b/src/frame.h
index 36b0b6b069cabdb0debc17ce58c8fe48675d33b6..8f563ca9d77e033f8ff8da8a7862cdacceba0a67 100644
(file)
--- a/
src/frame.h
+++ b/
src/frame.h
@@
-793,7
+793,7
@@
typedef struct frame *FRAME_PTR;
#define FRAME_SAMPLE_VISIBILITY(f) \
(((f)->async_visible && (f)->visible != (f)->async_visible) ? \
- SET_FRAME_GARBAGED (f) :
0,
\
+ SET_FRAME_GARBAGED (f) : \
(f)->visible = (f)->async_visible, \
(f)->iconified = (f)->async_iconified)